home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 July / PCWorld_2000-07_cd.bin / Software / Vyzkuste / scriptw / _SETUP.1 / Perl and CGI Template.cgi < prev    next >
Text File  |  2000-02-11  |  940b  |  37 lines

  1. #!/usr/bin/perl
  2. ##########################################################
  3. # This is our recommended comment layout style for Perl  #
  4. ##########################################################
  5. # Author:        <AUTHORNAME>                            #
  6. # Date:          <DD> <MONTHNAME> <YEAR>                 #
  7. # Copyright:     (C) xxxx All Rights Reserved.           #
  8. ##########################################################
  9. # Specific Details                                       #
  10. #                                                        #
  11. #                                                        #
  12. #                                                        #
  13. #                                                        #
  14. ##########################################################
  15.  
  16. &Procedure1;
  17. &Procedure2;
  18. &Procedure3;
  19.  
  20. sub Procedure1
  21. {
  22.  
  23. exit;
  24. }
  25.  
  26. sub Procedure2
  27. {
  28.  
  29. exit;
  30. }
  31.  
  32. sub Procedure3
  33. {
  34.  
  35. exit;
  36. }
  37.